@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,300&family=Poppins:wght@300&family=Ubuntu:wght@500&display=swap");

:root {
  --primary-color: #f34e3a;
  --secondary-color: #29282d;
  --tri-color: #9c9c9c;
  --lamp-black: #231f20;
}
/* BASE STYLING */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Montserrat;
}

a {
  text-decoration: none;
  color: #000;
}

/* NAVBAR */
.page-navbar {
  background-color: var(--secondary-color);
  padding: 20px;
  box-shadow: 2px rgba(0, 0, 0, 0.2);
}

.navbar-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-item {
  color: white;
  margin: 10px 15px;
}

.navbar-item:hover {
  border-bottom: 1px solid var(--tri-color);
  transition: 500ms all;
}

.brand-logo {
  color: var(--primary-color);
  font-family: Ubuntu;
  font-size: 1.6em;
}

.navbar-trigger {
  color: white;
  display: none;
}

/* SideNav */
.sidenav-items {
  width: 0;
  height: 100vh;
  position: fixed;
  left: -100vh;
  top: 0;
  background-color: var(--lamp-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 500ms;
}

.sidenav-item:hover {
  background-color: #fff;
  transition: all 500ms;
}

.close-btn {
  color: var(--primary-color);
  font-size: 1.8em;
  transition: all 500ms;
  padding: 10px;
}

.sidenav-item {
  color: var(--tri-color);
  margin: 15px 0px;
  padding: 10px;
  transition: all 500ms;
}

.close-btn:hover {
  background-color: #fff;
  transition: all 500ms;
}

/* HERO SECTION */
.hero-background {
  background: url(/imgs/P-3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 70vh;
  background-attachment: fixed;
}

.content-inside-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70vh;
  font-family: Ubuntu;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
}

/* About Us Section */
.about-us-section {
  background-color: var(--lamp-black);
}

.about-us-items {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--secondary-color);
}

.about-us-info {
  max-width: 600px;
  font-family: Poppins;
  line-height: 1.6em;
  color: var(--tri-color);
  text-align: center;
  margin: 15px 0px;
}

.about-us-img {
  width: 50%;
  object-fit: contain;
  margin: 15px 0px;
}

/* Gallery */

.gallery-section {
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.grid-img-direct {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.img-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin: 20px 0px;
}

/* FOOTER */
footer {
  background-color: var(--primary-color);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-info {
  font-weight: bold;
  font-family: Poppins;
  color: white;
}

.footer-social-icon {
  color: white;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 50%;
  margin: 0px 10px;
  font-size: 1.5em;
  transition: all 500ms;
}

.footer-social-icon:hover {
  transition: all 500ms;
  color: var(--secondary-color);
  background-color: white;
}

/* MEDIA QURIES */
@media (min-width: 1px) and (max-width: 750px) {
  .navbar-links {
    display: none;
  }

  .navbar-trigger {
    display: inline-flex;
  }

  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .brand-logo {
    font-size: 1.2em;
  }

  .about-us-img {
    width: 100%;
  }

  .about-us-info {
    margin: 15px 15px;
  }
}

/* Grid Responsive */

@media (min-width: 1px) and (max-width: 940px) {
  .img-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1px) and (max-width: 650px) {
  .img-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
  }
}
